home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / batchlrn.arc / PAUSE.HLP < prev    next >
Text File  |  1991-06-17  |  3KB  |  47 lines

  1.                 #
  2.                 #
  3.                 #
  4. |---------------B A T C H L R N  H E L P  S Y S T E M-----------------|
  5. |command: PAUSE                                                       |
  6. |use: To pass to a user control of a batch file while processing.     |
  7. |                                                                     |
  8. |how:Type:(in a batch file)  PAUSE <Message, if any>                  |
  9. |                                                                     |
  10. |example:Virtually every >BAT file on this disk has a PAUSE command.  |
  11. | TIMEMASTER displays messages on a separate line so we can insert    |
  12. | different colors for the message and the PAUSE instruction in the   |
  13. | color versions of these files.                                      |
  14. |                                      |
  15. |NOTES: The basic function of PAUSE is to stop the execution of the   |
  16. | batch file until you press a key. This can allow you to perform     |
  17. | a necessary task -- like perhaps changing a disk or verifying that  |
  18. | a particular disk configuration is in place, in order to avoid      |
  19. | errors as the remaining parts of the batch file are executed.       |
  20. | Pause will optionally display a message.                            |
  21. |  The message will show, followed by the DOS message:                |
  22. |                  Strike any key when ready...                       |
  23. |         THE PAUSE SUBCOMMAND IN BATCH PROCESSING FILES...           |
  24. | The PAUSE subcommand suspends execution of the batch file temporar- |
  25. | ily and displays the message "Strike any key when ready..." You     |
  26. | can display messages in a batch file with the ECHO subcommand and   |
  27. | then pause so the reader can read the message. These messages       |
  28. | must precede the PAUSE command. A common method used in batch files |
  29. | is to display a message before a major command is issued, thus giv- |
  30. | ing the user a chance to break out of the batch file. Example:      |
  31. |                 ECHO DRIVE C IS ABOUT TO BE ERASED...               |
  32. |                 ECHO Press Ctrl-Break to stop or                    |
  33. |                 PAUSE                                               |
  34. | The screen display would appear as follows:                         |
  35. |               DRIVE C IS ABOUT TO BE ERASED...                      |
  36. |               Press Ctrl-Break to stop or  [also Ctrl C]            |
  37. |               Strike any key when ready...                          |
  38. | One of the most useful features of PAUSE is to allow a user to      |
  39. | change diskettes between commands of a batch file.                  |
  40. | You can use the PAUSE command to segment a batch file into segments |
  41. | that can be stopped at any appropriate point. <comment> is optional |
  42. | and should be entered on the same line as PAUSE. <comment> is used  |
  43. | to prompt -- with a meaningful message -- the batch file user to    |
  44. | take some action when the file pauses. The <comment> is displayed   |
  45. | before the "Strike any key when ready..." message.                  |
  46. |----------------- T  I  M  E  M  A  S  T  E  R  ---------------------|
  47.